home *** CD-ROM | disk | FTP | other *** search
/ Champak 64 / Volume 64 - JOGO DISK .iso / Games / We_Are_Human.swf / scripts / frame_4 / DoAction.as
Text File  |  2008-04-25  |  532b  |  25 lines

  1. createEmptyMovieClip("stars",-100000);
  2. i = 0;
  3. while(i < 100)
  4. {
  5.    stars.attachMovie("star","star" + i,1000 + i);
  6.    i++;
  7. }
  8. onEnterFrame = function()
  9. {
  10.    i = 0;
  11.    while(i < 100)
  12.    {
  13.       _root.stars["star" + i]._x -= 1 / (16 / _root.stars["star" + i]._xscale * 4);
  14.       if(_root.p1.bod._currentframe == 2)
  15.       {
  16.          _root.stars["star" + i].play();
  17.       }
  18.       if(_root.stars["star" + i]._x < -10)
  19.       {
  20.          _root.stars["star" + i]._x = Stage.width + random(3);
  21.       }
  22.       i++;
  23.    }
  24. };
  25.